home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1999 March / EnigmA AMIGA RUN 35 (1999)(G.R. Edizioni)(IT)[!][issue 1999-03].iso / earcd / devel / libx11 / include / x11 / xlocale.h < prev    next >
C/C++ Source or Header  |  1999-01-01  |  672b  |  44 lines

  1. /* $XConsortium: Xlocale.h,v 1.8 91/04/10 10:41:17 rws Exp $ */
  2.  
  3. #ifndef _XLOCALE_H_
  4. #define _XLOCALE_H_
  5.  
  6. #include <X11/Xfuncproto.h>
  7. #include <X11/Xosdefs.h>
  8.  
  9. #ifndef X_LOCALE
  10. #ifdef X_NOT_STDC_ENV
  11. #define X_LOCALE
  12. #endif
  13. #endif
  14.  
  15. #ifndef X_LOCALE
  16. #include <locale.h>
  17. #else
  18.  
  19. #define LC_ALL      0
  20. #define LC_COLLATE  1
  21. #define LC_CTYPE    2
  22. #define LC_MONETARY 3
  23. #define LC_NUMERIC  4
  24. #define LC_TIME     5
  25.  
  26. _XFUNCPROTOBEGIN
  27. extern char *_Xsetlocale(
  28. #if NeedFunctionPrototypes
  29.     int /* category */,
  30.     _Xconst char* /* name */
  31. #endif
  32. );
  33. _XFUNCPROTOEND
  34.  
  35. #define setlocale _Xsetlocale
  36.  
  37. #ifndef NULL
  38. #define NULL 0
  39. #endif
  40.  
  41. #endif /* X_LOCALE */
  42.  
  43. #endif /* _XLOCALE_H_ */
  44.